home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-25 | 557 b | 33 lines | [TEXT/MPS ] |
- #
- # File: ODFFindFile
- #
- # Contains: Locate an ODF source file by its Name
- #
- # Written by: Steve Ussery
- #
- # Copyright: © 1996 by Apple Computer, Inc., all rights reserved.
- #
- # Change History (most recent first):
- #
- # <0> 02/14/96 sfu initial version.
- #
- # To Do:
- #
-
- Set Exit 0
-
- If {#} == 0
- Echo "Usage: {0} filename"
- Echo " (Where filename is the name of an ODF source file.)"
- Else
- Set FileLoc ""
- Set FileLoc `Files -r -f "{ODF}" | Search /{1}/`
- If {FileLoc} != ""
- Echo "Open ∂"{FileLoc}∂""
- Else
- Echo "{1} not found!"
- End
- End
-
- Set Exit 1
-